Addition Operator (Vector<T>)
Defines the + operator for vector.
'Declaration
Public Operator +( _
ByVal As Vector(Of T), _
ByVal As Vector(Of T) _
) As Vector(Of T)
public Vector<T> operator +(
Vector<T> ,
Vector<T>
)
Parameters
- left
- A Vector indicates the left operand.
- right
- A Vector indicates the right operand.
Return Value
A Vector that is the add result of the left and right operands.